NodeBox

Create visual output with Python programming code
Home Download Reference Tutorial Library Gallery About

Reference | nofill()


Syntax
nofill()

DescriptionDisables the current fill color. All shapes, paths and text following this command will be drawn without a fill color.


Example
fill(0.3)
rect(10, 10, 20, 40)
nofill()
rect(40, 10, 20, 40)